home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sun Solutions 1997 April to September
/
Sun Solutions CD - APR '97 - SEP '97 (704-3778-12 Rev. H)(Sun Microsystems, Inc.)(1997).iso
/
products
/
bin
/
httpd
/
Solaris_2
/
tt.pl
< prev
next >
Wrap
Perl Script
|
1996-06-04
|
134b
|
12 lines
#!./perl
open (ONLY,"/tmp/httpd/top");
while (<ONLY>) {
$line = $_;
@fields = split(/\^/,$_);
print @fields[2];
}
close (OPEN);